1 /* 2 * This file is part of gtkD. 3 * 4 * gtkD is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU Lesser General Public License 6 * as published by the Free Software Foundation; either version 3 7 * of the License, or (at your option) any later version, with 8 * some exceptions, please read the COPYING file. 9 * 10 * gtkD is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public License 16 * along with gtkD; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA 18 */ 19 20 // generated automatically - do not change 21 // find conversion definition on APILookup.txt 22 // implement new conversion functionalities on the wrap.utils pakage 23 24 25 module sourceview.StyleSchemeChooserWidget; 26 27 private import glib.ConstructionException; 28 private import gobject.ObjectG; 29 private import gtk.AccessibleIF; 30 private import gtk.AccessibleT; 31 private import gtk.BuildableIF; 32 private import gtk.BuildableT; 33 private import gtk.ConstraintTargetIF; 34 private import gtk.ConstraintTargetT; 35 private import gtk.Widget; 36 private import sourceview.StyleSchemeChooserIF; 37 private import sourceview.StyleSchemeChooserT; 38 private import sourceview.c.functions; 39 public import sourceview.c.types; 40 41 42 /** 43 * A widget for choosing style schemes. 44 * 45 * The `GtkSourceStyleSchemeChooserWidget` widget lets the user select a 46 * style scheme. By default, the chooser presents a predefined list 47 * of style schemes. 48 * 49 * To change the initially selected style scheme, 50 * use [method@StyleSchemeChooser.set_style_scheme]. 51 * To get the selected style scheme 52 * use [method@StyleSchemeChooser.get_style_scheme]. 53 */ 54 public class StyleSchemeChooserWidget : Widget, StyleSchemeChooserIF 55 { 56 /** the main Gtk struct */ 57 protected GtkSourceStyleSchemeChooserWidget* gtkSourceStyleSchemeChooserWidget; 58 59 /** Get the main Gtk struct */ 60 public GtkSourceStyleSchemeChooserWidget* getStyleSchemeChooserWidgetStruct(bool transferOwnership = false) 61 { 62 if (transferOwnership) 63 ownedRef = false; 64 return gtkSourceStyleSchemeChooserWidget; 65 } 66 67 /** the main Gtk struct as a void* */ 68 protected override void* getStruct() 69 { 70 return cast(void*)gtkSourceStyleSchemeChooserWidget; 71 } 72 73 /** 74 * Sets our main struct and passes it to the parent class. 75 */ 76 public this (GtkSourceStyleSchemeChooserWidget* gtkSourceStyleSchemeChooserWidget, bool ownedRef = false) 77 { 78 this.gtkSourceStyleSchemeChooserWidget = gtkSourceStyleSchemeChooserWidget; 79 super(cast(GtkWidget*)gtkSourceStyleSchemeChooserWidget, ownedRef); 80 } 81 82 // add the StyleSchemeChooser capabilities 83 mixin StyleSchemeChooserT!(GtkSourceStyleSchemeChooserWidget); 84 85 86 /** */ 87 public static GType getType() 88 { 89 return gtk_source_style_scheme_chooser_widget_get_type(); 90 } 91 92 /** 93 * Creates a new #GtkSourceStyleSchemeChooserWidget. 94 * 95 * Returns: a new #GtkSourceStyleSchemeChooserWidget. 96 * 97 * Throws: ConstructionException GTK+ fails to create the object. 98 */ 99 public this() 100 { 101 auto __p = gtk_source_style_scheme_chooser_widget_new(); 102 103 if(__p is null) 104 { 105 throw new ConstructionException("null returned by new"); 106 } 107 108 this(cast(GtkSourceStyleSchemeChooserWidget*) __p); 109 } 110 }